* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;


  background: linear-gradient(
    135deg,
    #7b83eb,
    #d084c8,
    #f59ca9,
    #7b83eb
  );
}

.container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.store-btn img {
  width: 860px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background: #fff;
  padding: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
}

